home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / graphics / gnuplot / gnuplot-3.7.1doc / demo / using.dem < prev    next >
Text File  |  1999-11-29  |  781b  |  27 lines

  1. #
  2. # $Id: using.dem,v 1.2.2.1 1999/10/11 13:23:35 lhecking Exp $
  3. #
  4. # Requires data file "using.dat" from this directory,
  5. # so change current working directory to this directory before running.
  6. #
  7.  
  8. set title "Convex     November 1-7 1989    Circadian"
  9. set key left box
  10. set xrange[-1:24]
  11. plot 'using.dat' using 2:4 title "Logged in" with impulses,\
  12.      'using.dat' using 2:4 title "Logged in" with points
  13. pause -1 "Hit return to continue"
  14.  
  15. set xrange [1:8]
  16. #set xdtic
  17. set title "Convex     November 1-7 1989"
  18. set key below
  19. set label "(Weekend)" at 5,25 center
  20. plot 'using.dat' using 3:4 title "Logged in" with impulses,\
  21.      'using.dat' using 3:5 t "Load average" with points,\
  22.      'using.dat' using 3:6 t "%CPU used" with lines
  23. set nolabel
  24. pause -1 "Hit return to continue"
  25. reset
  26.  
  27.